﻿/* General Styles */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 1000;
    border-bottom: 3px solid #006699;
}

.Cimage {
    max-height: 50px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    justify-content: center;
}

a {
    text-decoration: none;
    font-family: Arial;
}

.dropdown {
    position: relative;
    display: inline-block;
    margin: 0 10px; /* Space between dropdowns */
}

    /* Style the main dropdown link */
    .dropdown a {
        color: black;
        padding: 10px 10px;
        display: block;
        cursor: pointer;
    }

        .dropdown a:hover {
            background-color: #ddd;
        }

.dropbtn {
    background: none;
    border: none;
    color: #006699; /* Button text color */
    padding: 10px 16px; /* Button padding */
    font-family: Arial, sans-serif; /* Font family */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor for buttons */
    text-decoration:none;
}

.dropbtn:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Style the drop-down list */
.dropdown-content {
    display: none; /* Hide dropdown content by default */
    position: absolute; /* Position dropdown content */
    background-color: #f9f9f9; /* Dropdown background */
    min-width: 300px; /* Minimum width */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow effect */
    z-index: 1; /* Above other elements */
}

/* Show the drop-down list when hovering */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style for the submenu */
.submenu {
    display: none;
    background-color: #f9f9f9;
}

.dropdown-content .dropdown:hover .submenu {
    display: block;
}

.dropdown-content a {
    color: black; /* Link color */
    padding: 10px 16px; /* Link padding */
    display: block; /* Block display */
    text-align: left; /* Align text to the left */
}

    .dropdown-content a:hover {
        background-color: #ddd;
    }

.submenu a {
    padding: 12px 16px;
    background-color: #e9e9e9;
}

    .submenu a:hover {
        background-color: #ddd;
    }

.LSTKB {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    color: #006699;
    padding: 10px 16px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
}

    /* Responsive Styles */
    @media (max-width: 768px) {
        /* Show hamburger icon on mobile */
        .menu-toggle {
            display: block;
        }

        /* Hide the nav menu by default on mobile */
        .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 85px;
            left: 0;
            right: 0;
            background-color: white;
            z-index: 1000;
        }

            /* Show the menu when active */
            .nav-menu.active {
                display: flex;
            }

        /* Ensure dropdown content is full width on mobile */
        .dropdown-content {
            width: 100%;
        }

        .dropdown {
            width: 100%;
        }

        .dropbtn {
            width: 100%; /* Full-width buttons on mobile */
        }

        /* Make dropdown content visible when the menu is active on mobile */
        .dropdown-content {
            position: static; /* Stack dropdowns beneath the button */
        }

        /* Show dropdown content on click for mobile */
        .dropdown.active .dropdown-content {
            display: block;
        }

        /* Ensure proper mobile menu toggle behavior */
        .dropdown .dropbtn {
            background-color: #f1f1f1;
        }

            .dropdown .dropbtn:hover {
                background-color: #ddd;
            }
    }

